runtime.mSpanList.last (field)

12 uses

	runtime (current package)
		mheap.go#L392: 	last  *mspan // last span in list, or nil if none
		mheap.go#L1726: 	list.last = nil
		mheap.go#L1740: 	if list.last == span {
		mheap.go#L1741: 		list.last = span.prev
		mheap.go#L1766: 		list.last = span
		mheap.go#L1777: 	span.prev = list.last
		mheap.go#L1778: 	if list.last != nil {
		mheap.go#L1780: 		list.last.next = span
		mheap.go#L1785: 	list.last = span
		mheap.go#L1806: 		other.last.next = list.first
		mheap.go#L1807: 		list.first.prev = other.last
		mheap.go#L1811: 	other.first, other.last = nil, nil